home *** CD-ROM | disk | FTP | other *** search
- Option Explicit
-
-
- ' Declare a variable the will hold the session number.
- Global ggSessionNumber
-
- ' Declare constants
- Global Const SP_START_OF_FILE = -1
- Global Const SP_END_OF_FILE = -2
-
- ' Declare the sp_OpenSession() function from
- ' the TegoSND.DLL library.
- Declare Function sp_OpenSession Lib "TegoSND.DLL" (ByVal lpstrFileName As String) As Integer
-
- ' Declare the sp_PlaySnd() function from
- ' the TegoSND.DLL library.
- Declare Function sp_PlaySnd Lib "TegoSND.DLL" (ByVal iSessionHandler As Integer, ByVal lStartPoint As Long, ByVal lEndPoint As Long) As Long
-
- ' Declare the sp_CloseSession() function from
- ' the TegoSND.DLL library.
- Declare Function sp_CloseSession Lib "TegoSND.DLL" (ByVal iSessionHandler As Integer) As Integer
-
- Global Const CASCADE = 0
- Global Const TILE_HORIZONTAL = 1
- Global Const TILE_VERTICAL = 2
- Global Const ARRANGE_ICONS = 3
-
-